Full-Stack

Welcome Portfolio Projects Contact
↑ Go Back ↑

systemd

systemd

Manage services with systemd

Check which services are running

Display all services and their status

$ sudo systemctl

Display a specific service and its status

$ sudo systemctl | grep <service_name>.service

Display a specific service and its status

$ sudo systemctl status

Another method for displaying all services

$ ps aux

Start / Stop / Restart service

Start Service

$ sudo systemctl start <service_name>.service

Stop Service

$ sudo systemctl stop <service_name>.service

Restart Service

$ sudo systemctl restart <service_name>.service

Error debugging

Check the systemd error log

$ sudo journalctl -xe

Check status of one service

$ sudo systemctl status <service_name>.service